home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / gui / gtldv374.lha / GadUtil / Docs / AutoDocs / 08.GU_BlockInput < prev    next >
Text File  |  1996-05-14  |  765b  |  33 lines

  1. gadutil.library/GU_BlockInput                   gadutil.library/GU_BlockInput
  2.  
  3.    NAME
  4.     GU_BlockInput -- Block all input to a window.
  5.  
  6.    SYNOPSIS
  7.     GU_BlockInput(window)
  8.                   A0
  9.  
  10.     VOID GU_BlockInput(struct Window *);
  11.  
  12.    FUNCTION
  13.     Changes the window's pointer to the standard wait pointer (OS 2.0)
  14.     or the preferred wait pointer (OS 3.0+) and opens a requester to
  15.     block the user input of the given window. The requester that is
  16.     opened is not visible.
  17.  
  18.    INPUTS
  19.     window - the parent window for the requester. This is the window
  20.          that will be blocked for user input.
  21.  
  22.    EXAMPLE
  23.  
  24.     BlockInput(myWin);
  25.     About();
  26.     FreeInput();
  27.  
  28.     Will block the parent window for user input while displaying the
  29.     About requester of a program.
  30.  
  31.    SEE ALSO
  32.     GU_FreeInput()
  33.